home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- global gMousePatch, gAutoMode
- set gAutoMode to 0
- if not (the movieName contains "menu") then
- if the movieName contains "MAININT" then
- fadeMyVolume(3, 2, 2, 0, 0)
- play done
- else
- if gMousePatch then
- set gMousePatch to 0
- else
- set gMousePatch to 1
- sound stop 1
- sound stop 2
- puppetSound(0)
- alert("You have Paused the Demo." & RETURN & RETURN & "Press OK to continue...")
- updateStage()
- go(marker(0))
- end if
- end if
- end if
- end
-
- on setMyVolume theChannel, theMacVol, thePCVol
- if machineType() < 255 then
- set the volume of sound theChannel to theMacVol
- else
- set the volume of sound theChannel to thePCVol
- end if
- end
-
- on fadeMyVolume theChannel, theTime, theGrain, theLevelMac, theLevelPC
- if machineType() < 255 then
- set theLevel to theLevelMac
- else
- set theLevel to theLevelPC
- end if
- puppetTempo(theTime)
- if theChannel = 3 then
- repeat while (the volume of sound 1 > theLevel) or (the volume of sound 2 > theLevel)
- if the volume of sound 1 > theLevel then
- set the volume of sound 1 to the volume of sound 1 - theGrain
- end if
- if the volume of sound 2 > theLevel then
- set the volume of sound 2 to the volume of sound 2 - theGrain
- end if
- pWait(theTime)
- end repeat
- if theLevel = 0 then
- sound stop 1
- sound stop 2
- end if
- else
- repeat while the volume of sound theChannel > theLevel
- set the volume of sound theChannel to the volume of sound theChannel - theGrain
- pWait(theTime)
- end repeat
- if theLevel = 0 then
- sound stop theChannel
- end if
- end if
- end
-
- on doFancyCursor
- repeat with nn = 1 to 5
- cursor("fancyC" & nn)
- pWait(30)
- end repeat
- end
-
- on pWait theTicks
- set tmpTicks to the ticks
- repeat while the ticks < (tmpTicks + theTicks)
- end repeat
- end
-
- on idle
- global gCursorLoc
- if not (the movieName contains "menu") then
- set tmpMode to #Demo
- else
- set tmpMode to #menu
- end if
- if mouseLoc() = gCursorLoc then
- if the timer > (3 * 60) then
- if tmpMode = #Demo then
- cursor(200)
- end if
- end if
- else
- cursor(0)
- startTimer()
- set the timeoutLapsed to 0
- end if
- set gCursorLoc to mouseLoc()
- end
-
- on mouseLoc
- return point(the mouseH, the mouseV)
- end
-
- on autodemomode
- if the movieName contains "menu" then
- puppetSound(0)
- autoGoDemo()
- else
- set the timeoutLapsed to 0
- end if
- end
-